*{
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}
body{
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background-color: #32cd9c; */
	/* background-color: #131313; */
	
}
 .bg{
	background-image: url(/img/bg.png);
	position: sticky !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 60px;
  text-align: center;
 }



.container{
	background-image: url(/img/bg.png);
	position: sticky !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	width: 350px;
	background-color: white;
	/* opacity: 3; */
	background: rgb(0, 0, 0, 0.3);
	/* background-color: #726a6a; */
	border-radius: 5px;
	padding: 20px;
	text-align: center;
}
.container input{
	width: 100%;
	padding: 10px;
	border: none;
	border-bottom: 2px solid #777777;
	margin-bottom: 20px;
	font-size: 16px;
	outline: none;
}
.btn{
	border: none !important;
	cursor: pointer;
	/* background-color: #32cd9c; */
	background-color: #ffb400;
	margin: 15px 0;
	font-size: 16px;
	width: 100%;
	padding: 14px;
	display: inline-block;
  padding: 1rem 2.8rem;
  /* background: var(--main-color); */
  
  border-radius: 4rem;
  /* font-size: 1.6rem; */
  color: black;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.btn:hover{
	/* background-color: #1f7d5f; */
	/* background-color: #725106; */
	box-shadow: 0 0 25px #ffb400;
	color: white;
	transform: scale(1.05);
}


h2 {
	color: white;
	font-size: 3rem;
	font-weight: 500;
	margin-top: 1.5rem;
	line-height: 1;
  }


span {
	color: #ffb400;
  }